home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / applications / wp / fwmacros1.lha / UserMacros / english / SelectAllGraphics.fw < prev    next >
Encoding:
Text File  |  1994-10-04  |  344 b   |  19 lines

  1. /*
  2. $AUTHOR:  Manuel Lemos (UpperDesign@zeus.ci.ua.pt)
  3. $VER: SelectAllGraphics 1.00 (1.10.94)
  4.       Description:  ARexx macro for FinalWriter to select all graphic
  5.                     objects
  6. */
  7.  
  8. options results
  9.  
  10. GraphicTool
  11.  
  12. FirstObject 
  13. do until result = 0
  14.   objectid = result
  15.   SelectObject objectid MULTIPLE
  16.   NextObject objectid
  17. end
  18. redraw
  19.